From 67980734bdbc0cc307cd5620ed0804f70c0b3434 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Wed, 16 Jul 2014 12:07:46 +0100 Subject: [PATCH] mini-os: use generic local_irq_enable function __sti is x86 specific. Signed-off-by: Thomas Leonard Acked-by: Ian Campbell Acked-by: Samuel Thibault --- extras/mini-os/kernel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/mini-os/kernel.c b/extras/mini-os/kernel.c index 9a30550cbb..437e5b4100 100644 --- a/extras/mini-os/kernel.c +++ b/extras/mini-os/kernel.c @@ -121,7 +121,7 @@ void start_kernel(void) init_events(); /* ENABLE EVENT DELIVERY. This is disabled at start of day. */ - __sti(); + local_irq_enable(); setup_xen_features(); -- 2.30.2